home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Developer / StopWatch / Source / AppIconView.h next >
Encoding:
Text File  |  1993-02-08  |  500 b   |  21 lines

  1. /*
  2.  * AppIconView.m
  3.  * -- Henry Krempel, Based on Jayson Adams original 2.0 (Acceptor)
  4.  * This object can be used to replace the content view of the application's
  5.  * Icon.  This version is passed a subclass of View (in some other window)
  6.  * which it copies whenever it is displayed.
  7.  * hjk - Mon Feb  8 1993
  8.  */
  9. #import <appkit/appkit.h>
  10.  
  11. @interface AppIconView:View
  12. {
  13.     id  sourceWindow;
  14.     NXRect    sourceRect;
  15. }
  16.  
  17. /* instance methods */
  18. - initFrame:(const NXRect *)frameRect sourceView:obj;
  19.  
  20. @end
  21.